summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/test/object/filter.js
blob: 7307da8640fcd19db152ce00ee7fdfb9ae360b6e (plain)
1
2
3
4
5
6
'use strict';

module.exports = function (t, a) {
	a.deep(t({ 1: 1, 2: 2, 3: 3, 4: 4 },
		function (value) { return Boolean(value % 2); }), { 1: 1, 3: 3 });
};