Current Path : /var/www/wptbox/wp-content/plugins/astra-sites/inc/lib/onboarding/assets/src/utils/ |
Current File : /var/www/wptbox/wp-content/plugins/astra-sites/inc/lib/onboarding/assets/src/utils/strip-slashes.js |
/** * Strip slashes from a string. * * @param {string} str String to strip slashes from. * @return {string} String with slashes stripped. */ export const stripSlashes = ( str ) => { return str.replace( /^\/+|\/+$/g, '' ); };