UNPKG

@apite/magento2-utility

Version:

Shopgate WebCheckout utility for Magento 2 extensions

16 lines (12 loc) 234 B
'use strict' /** * @param {?string} route * @returns {?string} */ const formatRoute = route => { if (typeof route !== 'string') { return null } return route.replace(/^\/+|\/+$/g, '') } module.exports = { formatRoute }