mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-14 16:00:17 +00:00
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
|
var matchAll = require('../string/virtual/match-all');
|
||
|
|
||
|
var StringPrototype = String.prototype;
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
var own = it.matchAll;
|
||
|
return typeof it === 'string' || it === StringPrototype
|
||
|
|| (it instanceof String && own === StringPrototype.matchAll) ? matchAll : own;
|
||
|
};
|