voca
Version:
The ultimate JavaScript string library
40 lines (33 loc) • 841 B
JavaScript
import './internal/is_nil.js';
import './is_string.js';
import { c as coerceToString } from './internal/coerce_to_string.js';
var BYRE_ORDER_MARK = '\uFEFF';
/**
* Strips the byte order mark (BOM) from the beginning of `subject`.
*
* @function stripBom
* @static
* @since 1.2.0
* @memberOf Strip
* @param {string} [subject=''] The string to strip from.
* @return {string} Returns the stripped string.
* @example
*
* v.stripBom('\uFEFFsummertime sadness');
* // => 'summertime sadness'
*
* v.stripBom('summertime happiness');
* // => 'summertime happiness'
*
*/
function trim(subject) {
var subjectString = coerceToString(subject);
if (subjectString === '') {
return '';
}
if (subjectString[0] === BYRE_ORDER_MARK) {
return subjectString.substring(1);
}
return subjectString;
}
export default trim;