This website works better with JavaScript.
Explore
Help
Sign In
sigonasr2
/
sigcrafting_backend
Watch
1
Star
0
Fork
You've already forked sigcrafting_backend
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
50
Commits
1
Branch
0
Tags
1.8 MiB
Tree:
4bd8b1e7ea
sigcrafting_backend
/
node_modules
/
axios
/
lib
/
cancel
/
isCancel.js
6 lines
102 B
Raw
Normal View
History
Unescape
Escape
Implement test endpoints
4 years ago
'use strict'
;
module
.
exports
=
function
isCancel
(
value
)
{
return
!
!
(
value
&&
value
.
_
_CANCEL
_
_
)
;
}
;