Sha256: 380db8519db4de2a426101ed33e8a21f456986d9bcb0140c1921418d4885025b

Contents?: true

Size: 601 Bytes

Versions: 56

Compression:

Stored size: 601 Bytes

Contents

'use strict';

var flags = require('../implementation');
var callBind = require('call-bind');
var test = require('tape');
var hasStrictMode = require('has-strict-mode')();
var runTests = require('./tests');

test('as a function', function (t) {
	t.test('bad array/this value', { skip: !hasStrictMode }, function (st) {
		/* eslint no-useless-call: 0 */
		st['throws'](function () { flags.call(undefined); }, TypeError, 'undefined is not an object');
		st['throws'](function () { flags.call(null); }, TypeError, 'null is not an object');
		st.end();
	});

	runTests(callBind(flags), t);

	t.end();
});

Version data entries

56 entries across 55 versions & 4 rubygems

Version Path
immosquare-cleaner-0.1.62 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.61 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.60 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.59 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.58 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.57 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.56 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.55 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.54 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.53 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.52 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.51 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.50 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.49 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.48 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.47 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.46 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.45 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.44 node_modules/regexp.prototype.flags/test/implementation.js
immosquare-cleaner-0.1.43 node_modules/regexp.prototype.flags/test/implementation.js