mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
'use strict';
|
|
|
|
var toInteger = require('./to-integer')
|
|
|
|
, max = Math.max;
|
|
|
|
module.exports = function (value) { return max(0, toInteger(value)); };
|