UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

13 lines (11 loc) 261 B
'use strict'; function getCollationReadyString(str, sortIgnore, sortIgnoreCase) { if (sortIgnoreCase) { str = str.toLowerCase(); } if (sortIgnore) { str = str.replace(sortIgnore, ''); } return str; } module.exports = getCollationReadyString;