One or more of the specified requirements was not met
1.0
Notes
This function is similar to Check.has() with some notable differences:
Check() allows an array of filenames in the first parameter, Check.has() does not
Check() does not attempt to autoload missing files, Check.has() does (unless told not to)
Example
if (Check("foo.js")) {
// do stuff that relies on foo.js (any version)
}
if (Check(["bar.js", "baz.js"], 1.2)) {
// do stuff that requires v1.2 of bar.js and v1.2 of baz.js
}
if (Check("foo.js", Check.NOT_LOADED)) {
// do stuff that relies on foo.js being unavailable
}