.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / remark-parse / index.js
1 'use strict';
2
3 var unherit = require('unherit');
4 var xtend = require('xtend');
5 var Parser = require('./lib/parser.js');
6
7 module.exports = parse;
8 parse.Parser = Parser;
9
10 function parse(options) {
11   var Local = unherit(Parser);
12   Local.prototype.options = xtend(Local.prototype.options, this.data('settings'), options);
13   this.Parser = Local;
14 }