Skip to content

Instantly share code, notes, and snippets.

@julien-f
Created March 9, 2022 07:52
Show Gist options
  • Save julien-f/b1a155fef1173c7b82e532f9bc28eb7c to your computer and use it in GitHub Desktop.
Save julien-f/b1a155fef1173c7b82e532f9bc28eb7c to your computer and use it in GitHub Desktop.
Deprecate function
"use strict";
exports.deprecate = function deprecate(fn, message) {
let warned = false;
return function deprecated() {
if (!warned) {
warned = true;
console.warn(new Error(message));
}
return fn.apply(this, arguments);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment