Sign in
appsheet-third-party
/
react-draggable
/
d625fe27b181ae3db0e1a0c660de1487a94f914f
/
.
/
lib
/
utils
/
log.js
blob: ee2c37f2c5bc16854b55a24c661525fd03930e63 [
file
] [
log
] [
blame
]
// @flow
/*eslint no-console:0*/
export
default
function
log
(...
args
:
any
)
{
if
(
process
.
env
.
DRAGGABLE_DEBUG
)
console
.
log
(...
args
);
}