web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
305 B

  1. 'use strict';
  2. var $strSlice = require('call-bind/callBound')('String.prototype.slice');
  3. module.exports = function isPrefixOf(prefix, string) {
  4. if (prefix === string) {
  5. return true;
  6. }
  7. if (prefix.length > string.length) {
  8. return false;
  9. }
  10. return $strSlice(string, 0, prefix.length) === prefix;
  11. };