UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

7 lines (6 loc) 161 B
// 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); };