Skip to content

Instantly share code, notes, and snippets.

View zoo-topia's full-sized avatar
🎯
Focusing

Judy zoo-topia

🎯
Focusing
View GitHub Profile
@zoo-topia
zoo-topia / gist:10af05bb45210b5183f0c663c4ac43f6
Created October 7, 2020 18:00 — forked from tyteen4a03/gist:3420a9e121d13b091343
Shopify handleize function in JavaScript
// from https://github.com/Shopify/liquid/blob/63eb1aac69a31d97e343822b973b3a51941c8ac2/performance/shopify/shop_filter.rb#L100
Shopify.handleize = function (str) {
str = str.toLowerCase();
var toReplace = ['"', "'", "\\", "(", ")", "[", "]"];
// For the old browsers
for (var i = 0; i < toReplace.length; ++i) {
str = str.replace(toReplace[i], "");
}