I know this package is deprecated but would like to understand what's going on -
Looking at the docs, does the below mean that if window.JSON is true, run the complete function? And if not, load up the nope file?
yepnope({
test: window.JSON,
nope: 'json2.js',
complete: function () {
var data = window.JSON.parse('{ "json" : "string" }');
}
});