芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/type/number/coerce.js
"use strict"; var isValue = require("../value/is"); module.exports = function (value) { if (!isValue(value)) return null; try { value = +value; // Ensure implicit coercion } catch (error) { return null; } if (isNaN(value)) return null; return value; };