Sha256: 62d360a8264f8ebfd0724c6834245867efd442de83aff0947ad1c420bc8decf0
Contents?: true
Size: 407 Bytes
Versions: 4
Compression:
Stored size: 407 Bytes
Contents
'use strict'; var isPrototypeOf = require('../../internals/object-is-prototype-of'); var method = require('../string/virtual/is-well-formed'); var StringPrototype = String.prototype; module.exports = function (it) { var own = it.isWellFormed; return typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.isWellFormed) ? method : own; };
Version data entries
4 entries across 4 versions & 1 rubygems