📄 index.js
/home/palash/git/site/node_modules/string.prototype.matchall/test/index.js
Language: js • Lines: 13
'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();
});