File size: 336 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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, '');
}
|