本文整理汇总了TypeScript中src/has.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: xhrRequest
return xhrRequest('/__echo/default', options).then(function (response: any) {
const data = JSON.parse(response.data);
assert.strictEqual(data.headers['x-requested-with'], 'XMLHttpRequest');
if (has('formdata')) {
assert.include(data.headers['content-type'], 'application/x-www-form-urlencoded');
}
});
示例2: load
}));
},
'contextual load'(this: any) {
const def = this.async(5000);
load(require, './load/a', './load/b').then(def.callback(function ([ a, b ]: [ any, any ]) {
assert.deepEqual(a, { one: 1, two: 2 });
assert.deepEqual(b, { three: 3, four: 4 });
}));
}
// TODO: once AMD error handling is figured out, add tests for the failure case
};
if (has('host-node')) {
const nodeRequire: any = global.require.nodeRequire;
const path: any = nodeRequire('path');
const buildDir: string = path.join(process.cwd(), '_build');
suite.node = {
'different than AMD load'() {
const nodeLoad: typeof load = nodeRequire(path.join(buildDir, 'src', 'load')).default;
assert.notStrictEqual(nodeLoad, load);
},
'global load succeeds'(this: any) {
const def = this.async(5000);
const result: Promise<any[]> = nodeRequire(path.join(buildDir, 'tests', 'unit', 'load', 'node')).globalSucceed;
result.then(def.callback(function ([ fs, path ]: [ any, any ]) {
示例3: if
const basePath = (function() {
if (has('host-browser')) {
return '../../_build/tests/support/data/';
}
else if (has('host-node')) {
return '_build/tests/support/data/';
}
})();
示例4: a
'.queueAnimationTask()': function () {
if (!has('host-browser')) {
this.skip('browser required.');
}
const dfd = this.async(5000);
const parts: string[] = [];
function a() {
queueAnimationTask(function () {
parts.push('queueAnimationTask 1');
});
parts.push('start');
queueAnimationTask(function () {
parts.push('queueAnimationTask 2');
});
}
function b() {
parts.push('end');
}
function c() {
a();
b();
}
c();
setTimeout(dfd.callback(function () {
assert.equal(parts.join(','), 'start,end,queueAnimationTask 1,queueAnimationTask 2',
'queueAnimationTasks should be executed to the beginning of the next loop.');
}), 300);
},
示例5: test
'.queueAnimationTask() => handle.destroy()': function () {
if (!has('host-browser')) {
this.skip('browser required.');
}
const dfd = this.async(5000);
let parts: string[];
function test() {
parts = [];
parts.push('start');
queueAnimationTask(function () {
parts.push('queueAnimationTask');
}).destroy();
parts.push('end');
}
test();
setTimeout(dfd.callback(function () {
assert.equal(parts.join(','), 'start,end');
}), 100);
},
示例6: ArrayBuffer
import * as assert from 'intern/chai!assert';
import * as registerSuite from 'intern!object';
import has from 'src/has';
import ByteLengthQueuingStrategy from 'src/streams/ByteLengthQueuingStrategy';
import WritableStream, { State } from 'src/streams/WritableStream';
import ManualSink from './helpers/ManualSink';
const ASYNC_TIMEOUT = 1000;
registerSuite({
name: 'ByteLengthQueuingStrategy',
size() {
if (!has('arraybuffer')) {
this.skip('ArrayBuffer doesn\'t exist in this environment');
}
let dfd = this.async(ASYNC_TIMEOUT);
let sink = new ManualSink<ArrayBuffer>();
let stream = new WritableStream<ArrayBuffer>(sink, new ByteLengthQueuingStrategy<ArrayBuffer>({
highWaterMark: 2 * 1024
}));
let promise = stream.write(new ArrayBuffer(1024));
assert.strictEqual(stream.state, State.Writable);
stream.write(new ArrayBuffer(1024));
assert.strictEqual(stream.state, State.Writable);
stream.write(new ArrayBuffer(1));
assert.strictEqual(stream.state, State.Waiting);
示例7: function
'has cache': {
teardown() {
delete hasCache['abc'];
delete hasCache['def'];
delete hasCache['deferred-cache'];
},
'basic true/false tests'() {
hasAdd('abc', true);
assert.isTrue(hasCache['abc']);
hasAdd('def', false);
assert.isFalse(hasCache['def']);
delete hasCache['abc'];
assert.isUndefined(has('abc'), 'Feature should be undefined after being removed from cache');
},
'deferred feature test should not populate cache until evaluated'() {
hasAdd('deferred-cache', function () {
return true;
});
assert.notProperty(hasCache, 'deferred-cache');
has('deferred-cache');
assert.property(hasCache, 'deferred-cache');
}
},
'adding feature detections': {
setup() {
Object.keys(hasCache).forEach(function (key) {