summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext/test/string/#/repeat/shim.js
blob: 7e0d077ec4bdb6047c7fec960598c936ccc4899b (plain)
1
2
3
4
5
6
7
8
'use strict';

module.exports = function (t, a) {
	a(t.call('a', 0), '', "Empty");
	a(t.call('a', 1), 'a', "1");
	a(t.call('\t', 5), '\t\t\t\t\t', "Whitespace");
	a(t.call('raz', 3), 'razrazraz', "Many chars");
};