UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

7 lines (6 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isInteger = void 0; const isNumber_js_1 = require("./isNumber.js"); const isInteger = (candidate) => (0, isNumber_js_1.isNumber)(candidate) && Number.isInteger(candidate); exports.isInteger = isInteger;