Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
array.prototype.map
/
test
/
Filename :
implementation.js
back
Copy
var map = require('../implementation'); var bind = require('function-bind'); var test = require('tape'); var runTests = require('./tests'); var hasStrictMode = require('has-strict-mode')(); test('as a function', function (t) { t.test('bad array/this value', function (st) { st['throws'](bind.call(map, null, undefined, 'a'), TypeError, 'undefined is not an object'); st['throws'](bind.call(map, null, null, 'a'), TypeError, 'null is not an object'); st.end(); }); t.test('receiver boxing', function (st) { st.plan(hasStrictMode ? 3 : 2); var context = 'x'; map.call( 'f', function () { st.equal(typeof this, 'object'); st.equal(String.prototype.toString.call(this), context); }, context ); st.test('strict mode', { skip: !hasStrictMode }, function (sst) { sst.plan(2); map.call( 'f', function () { 'use strict'; sst.equal(typeof this, 'string'); sst.equal(this, context); }, context ); sst.end(); }); st.end(); }); runTests(bind.call(Function.call, map), t); t.end(); });