UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

15 lines (14 loc) 295 B
"use strict"; function time() { return 0 | (Date.now() / 1000); } exports.time = time; ; function isFloat(n) { return (typeof n === 'number') && (n % 1) !== 0; } exports.isFloat = isFloat; function isInt(n) { return (typeof n === 'number') && (n % 1) === 0; } exports.isInt = isInt;