UNPKG
t8on
Version:
latest (0.2.0-alpha.2)
0.2.0-alpha.2
0.2.0-alpha.1
0.1.5
0.1.4
0.1.2
0.1.1
Set up, format and translate phrases easily
github.com/Oopscurity/t8on
Oopscurity/t8on
t8on
/
dist
/
cjs
/
util
/
deprecate.js
13 lines
(12 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
module
.
exports
=
function
deprecate
(
f, message
) {
var
called =
false
;
return
function
deprecated
(
) {
if
(!called) { called =
true
;
// eslint-disable-next-line no-console
console
.
warn
(message); }
return
f.
apply
(
null
,
arguments
); }; };