DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
336 Bytes
import { regex_starts_with_whitespaces, regex_ends_with_whitespaces } from './patterns.js';
/**
* @param {string} str
*/
export function trim_start(str) {
return str.replace(regex_starts_with_whitespaces, '');
}
/**
* @param {string} str
*/
export function trim_end(str) {
return str.replace(regex_ends_with_whitespaces, '');
}