UNPKG

auth0-js

Version:

Auth0 headless browser sdk

16 lines (11 loc) 253 B
/* eslint-disable no-console */ function Warn(options) { this.disableWarnings = options.disableWarnings; } Warn.prototype.warning = function(message) { if (this.disableWarnings) { return; } console.warn(message); }; export default Warn;