UNPKG

underscore.string

Version:

String manipulation extensions for Underscore.js javascript library.

4 lines (3 loc) 92 B
module.exports = function toPositive(number) { return number < 0 ? 0 : (+number || 0); };