devsite/node_modules/gray-matter/lib/parse.js
2024-07-07 18:49:38 -07:00

14 lines
389 B
JavaScript

'use strict';
const getEngine = require('./engine');
const defaults = require('./defaults');
module.exports = function(language, str, options) {
const opts = defaults(options);
const engine = getEngine(language, opts);
if (typeof engine.parse !== 'function') {
throw new TypeError('expected "' + language + '.parse" to be a function');
}
return engine.parse(str, opts);
};