UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

9 lines (7 loc) 274 B
'use strict'; function sanitizeURIComponent(obj) { // undefined, null, and NaN are represented as a blank string, // while false and 0 are stringified. return !obj && obj !== false && obj !== 0 ? '' : encodeURIComponent(obj); } module.exports = sanitizeURIComponent;