Atualizado

This commit is contained in:
2024-06-07 20:16:57 -04:00
parent ef309362e8
commit 15cccf56d0
545 changed files with 93228 additions and 7 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;
}