00001 var root = require('./_root');
00002
00003 /* Built-in method references for those with the same name as other `lodash` methods. */00004 var nativeIsFinite = root.isFinite;
00005
00032 function isFinite(value) {
00033 return typeof value == 'number' && nativeIsFinite(value);
00034 }
00035
00036 module.exports = isFinite;