This function converts an input string into a deterministic, space-free string.
For example, we can use this to calculate the default product URL slug from a product title:
const productTitle = 'Test Product';const handle = handleify(productTitle);// handle = 'test-product' Copy
const productTitle = 'Test Product';const handle = handleify(productTitle);// handle = 'test-product'
the input string
Generated using TypeDoc
This function converts an input string into a deterministic, space-free string.
For example, we can use this to calculate the default product URL slug from a product title: