UNPKG

ndoc

Version:

JavaScript API documentor with simple syntax.

14 lines (7 loc) 294 B
'use strict'; // 3rd-party const _ = require('lodash'); //////////////////////////////////////////////////////////////////////////////// module.exports.template = function template(str, data, options) { return _.template(str, _.extend({ interpolate: /\{(.+?)\}/g }, options))(data); };