项目原始demo,不改动
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.
 
 
 
 

15 lignes
317 B

  1. 'use strict';
  2. module.exports = x => {
  3. if (typeof x !== 'string') {
  4. throw new TypeError('Expected a string, got ' + typeof x);
  5. }
  6. // Catches EFBBBF (UTF-8 BOM) because the buffer-to-string
  7. // conversion translates it to FEFF (UTF-16 BOM)
  8. if (x.charCodeAt(0) === 0xFEFF) {
  9. return x.slice(1);
  10. }
  11. return x;
  12. };