WIP - add extractor, generate snippet_data
This commit is contained in:
20
node_modules/markdown-builder/lib/util/helpers.js
generated
vendored
Executable file
20
node_modules/markdown-builder/lib/util/helpers.js
generated
vendored
Executable file
@ -0,0 +1,20 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
/**
|
||||
* Utility functions & helpers
|
||||
*
|
||||
*/
|
||||
|
||||
var withPrefix = function withPrefix(prefix, text) {
|
||||
return prefix + ' ' + text;
|
||||
};
|
||||
|
||||
var surround = function surround(prefix, text) {
|
||||
return prefix + text + prefix;
|
||||
};
|
||||
|
||||
exports.withPrefix = withPrefix;
|
||||
exports.surround = surround;
|
||||
Reference in New Issue
Block a user