index.js 255 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /*! * is-number <https://github.com/jonschlinkert/is-number> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT License */ 'use strict'; module.exports = function isNumber(n) { return !!(+n) || n === 0 || n === '0'; };