UNPKG

dojo

Version:

Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.

9 lines 248 B
define(["dojo/has"], function(has) { /* Loads a string based on the value of defined features */ var data = has("foo") ? "foo" : has("bar") ? "bar" : "undefined"; return { load: function(id, parentRequire, loaded) { loaded(data); } } });