租房小程序前端代码
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.

12 lines
223 B

6 months ago
  1. // Generated by CoffeeScript 1.12.7
  2. (function() {
  3. "use strict";
  4. exports.stripBOM = function(str) {
  5. if (str[0] === '\uFEFF') {
  6. return str.substring(1);
  7. } else {
  8. return str;
  9. }
  10. };
  11. }).call(this);