Skip to content

Instantly share code, notes, and snippets.

@jakerobers
Created April 29, 2020 03:40
Show Gist options
  • Save jakerobers/a5d5074a552ca875673526c7af66c8fe to your computer and use it in GitHub Desktop.
Save jakerobers/a5d5074a552ca875673526c7af66c8fe to your computer and use it in GitHub Desktop.
import assert from 'assert'
function warn(msg) {
assert(console, '`console` is not supported in this environment')
assert(console.warn, '`console.warn` is not supported in this environment')
console.warn("[validate.js] " + msg)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment