astro-ghostcms/.pnpm-store/v3/files/5a/804cf4e255a018a27d2cff51065...

17 lines
314 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
exports.deprecate = (fn, msg) => {
let once = true;
return function() {
if (once) {
console.warn("DeprecationWarning: " + msg);
once = false;
}
return fn.apply(this, arguments);
};
};