- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
define(['./_setup', './_tagTester'], function (_setup, _tagTester) {
|
|
|
|
// Is a given value an array?
|
|
// Delegates to ECMA5's native `Array.isArray`.
|
|
var isArray = _setup.nativeIsArray || _tagTester('Array');
|
|
|
|
return isArray;
|
|
|
|
});
|