1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 'use strict';
- var GetIntrinsic = require('get-intrinsic');
- var $TypeError = GetIntrinsic('%TypeError%');
- var isPrefixOf = require('../helpers/isPrefixOf');
- var Type = require('./Type');
- module.exports = function IsStringPrefix(p, q) {
- if (Type(p) !== 'String') {
- throw new $TypeError('Assertion failed: "p" must be a String');
- }
- if (Type(q) !== 'String') {
- throw new $TypeError('Assertion failed: "q" must be a String');
- }
- return isPrefixOf(p, q);
-
- };
|