版博士V2.0程序
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.
 
 
 
 

16 regels
321 B

  1. /*!
  2. * strip-bom-string <https://github.com/jonschlinkert/strip-bom-string>
  3. *
  4. * Copyright (c) 2015, 2017, Jon Schlinkert.
  5. * Released under the MIT License.
  6. */
  7. 'use strict';
  8. module.exports = function(str) {
  9. if (typeof str === 'string' && str.charAt(0) === '\ufeff') {
  10. return str.slice(1);
  11. }
  12. return str;
  13. };