UNPKG
tsdms
Version:
latest (0.1.0)
0.1.0
Time Series Data Management System
bitbucket.org/sharingapples/wscada.net-server
tsdms
/
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