UNPKG

react-native-web-headroom

Version:
16 lines (10 loc) 312 B
"use strict"; const marked = require("marked"); const loaderUtils = require("loader-utils"); module.exports = function (markdown) { // merge params and default config const options = loaderUtils.getOptions(this); this.cacheable(); marked.setOptions(options); return marked(markdown); };