mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 13:39:30 +08:00
13 lines
261 B
Text
13 lines
261 B
Text
'use strict';
|
|
|
|
var matchAllShim = require('../');
|
|
var regexMatchAll = require('../regexp-matchall');
|
|
var test = require('tape');
|
|
|
|
var runTests = require('./tests');
|
|
|
|
test('as a function', function (t) {
|
|
runTests(matchAllShim, regexMatchAll, t);
|
|
|
|
t.end();
|
|
});
|