devsite/node_modules/gray-matter/lib/parse.js

14 lines
389 B
JavaScript
Raw Normal View History

2024-07-08 01:49:38 +00:00
'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);
};