summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/test/reg-exp/#/match/shim.js
blob: 5249139fff22775151c9848b7a9ad9d1c5e5c469 (plain)
1
2
3
4
5
6
7
8
'use strict';

module.exports = function (t, a) {
	var result = ['foo'];
	result.index = 0;
	result.input = 'foobar';
	a.deep(t.call(/foo/, 'foobar'), result);
};