File "hooks.js"

Full Path: /home/cananyalcin/public_html/vendors/moment/src/lib/utils/hooks.js
File size: 298 bytes
MIME-type: text/plain
Charset: utf-8

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;
}