UNPKG

pebblebed

Version:

Simplified interactions with Google Datastore for NodeJS

9 lines (7 loc) 245 B
import Core from "../Core"; import { throwError } from "../Messaging"; export default function checkDatastore(operation: string) { if (Core.Instance.ds == null) { throwError("Datastore has not been connected to Pebblebed"); } }