Searched defs:test (Results 1 - 2 of 2) sorted by relevance

/yui3/src/yui/js/
H A Dyui-array.js20 * Array-like collections (see `Array.test()`) are converted to arrays.
44 if (force || YArray.test(thing)) {
260 @method test
261 @param {Object} obj Object to test.
262 @return {Number} A number indicating the results of the test:
270 YArray.test = function (obj) {
/yui3/src/loader/js/
H A Dloader.js872 * @param {Function} [config.condition.test] A function that returns true when the module is to be loaded.
876 * @param {Object} [config.testresults] A hash of test results from `Y.Features.all()`
912 if (p && this.REGEX_CSS.test(p)) {
1366 //then see if they've got a test fn & if it returns true
1368 var go = def && ((!def.ua && !def.test) || (def.ua && Y.UA[def.ua]) ||
1369 (def.test && def.test(Y, r)));
1715 //There is no test method, create a default one that tests
1717 if (!p.test) {
1718 p.test
[all...]

Completed in 38 milliseconds