您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 181B

123456789101112
  1. 'use strict';
  2. var index = require('../');
  3. var test = require('tape');
  4. var runTests = require('./tests');
  5. test('as a function', function (t) {
  6. runTests(index, t);
  7. t.end();
  8. });