Tags: busunkim96/nodejs-bigtable
Tags
fix: use GCLOUD_PROJECT instead of PROJECT_ID (googleapis#234)
Fix broken system test (googleapis#156) `if (!isNaN(num) && isFinite(num)) {` is no longer a valid check if the converted number is valid. Instead: ```js if (Number.MIN_SAFE_INTEGER < num && num < Number.MAX_SAFE_INTEGER) { ``` is used. Also there's no point in trying to convert the buffer to a number if the buffer length isn't `8`
PreviousNext