First support for md extensions; Package all needed dependencies in the repo

This commit is contained in:
2022-06-24 00:30:50 +02:00
parent 543e3de13e
commit cd5b7d6100
3582 changed files with 223035 additions and 48 deletions

17
Source/node_modules/js-stringify/index.js generated vendored Normal file
View File

@ -0,0 +1,17 @@
'use strict';
module.exports = stringify;
function stringify(obj) {
if (obj instanceof Date) {
return 'new Date(' + stringify(obj.toISOString()) + ')';
}
if (obj === undefined) {
return 'undefined';
}
return JSON.stringify(obj)
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029')
.replace(/</g, '\\u003C')
.replace(/>/g, '\\u003E')
.replace(/\//g, '\\u002F');
}