API inicial

This commit is contained in:
2021-03-25 17:23:36 +01:00
commit 218326c402
1878 changed files with 274122 additions and 0 deletions

13
node_modules/moment/src/lib/utils/hooks.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
export { hooks, setHookCallback };
var hookCallback;
function hooks() {
return hookCallback.apply(null, arguments);
}
// This is done to register the method called with moment()
// without creating circular dependencies.
function setHookCallback(callback) {
hookCallback = callback;
}