Initial import with skill sheet working

This commit is contained in:
2024-12-04 00:11:23 +01:00
commit 9050c80ab4
4488 changed files with 671048 additions and 0 deletions

18
node_modules/liftoff/lib/needs_lookup.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
var isPlainObject = require('is-plain-object').isPlainObject;
function needsLookup(xtends) {
if (typeof xtends === 'string' && xtends[0] === '.') {
return true;
}
if (isPlainObject(xtends)) {
// Objects always need lookup because they can't be used with `require()`
return true;
}
return false;
}
module.exports = needsLookup;