nan.js.txt (288B)
1 'use strict'; 2 3 // MAIN // 4 5 /** 6 * Evaluates a rational function. 7 * 8 * @private 9 * @param {number} x - value at which to evaluate the rational function 10 * @returns {number} evaluated rational function 11 */ 12 function evalrational() { 13 return NaN; 14 } 15 16 17 // EXPORTS // 18 19 module.exports = evalrational;