UNPKG
inversify-devtools
Version:
latest (1.0.0)
1.0.0
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.1
1.0.0-alpha.2
inversify-devtools
github.com/inversify/inversify-devtools
inversify/inversify-devtools
inversify-devtools
/
node_modules
/
history
/
modules
/
deprecate.js
11 lines
(8 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
warning
from
'warning'
function
deprecate
(
fn, message
) {
return
function
(
) {
warning
(
false
,
'[history] '
+ message)
return
fn.
apply
(
this
,
arguments
) } }
export
default
deprecate