method Datastore.isInt Datastore.isInt(value?: { }): boolean Helper function to check if something is a Datastore Integer object. Examples Example 1 const {Datastore} = require('@google-cloud/datastore'); const datastore = new Datastore(); datastore.isInt(42); // false datastore.isInt(datastore.int(42)); // true Parameters optional value: { } Return Type boolean