Kargi-Sitesi/node_modules/core-js/es/instance/code-point-at.js

12 lines
404 B
JavaScript
Raw Normal View History

2024-11-03 21:30:09 -05:00
'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../string/virtual/code-point-at');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.codePointAt;
return typeof it == 'string' || it === StringPrototype
|| (isPrototypeOf(StringPrototype, it) && own === StringPrototype.codePointAt) ? method : own;
};