No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

10 líneas
331 B

hace 4 años
  1. 'use strict';
  2. var test = require('tape');
  3. var has = require('../');
  4. test('has', function (t) {
  5. t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"');
  6. t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"');
  7. t.end();
  8. });