UNPKG

graphdb

Version:

Javascript client library supporting GraphDB and RDF4J REST API.

17 lines (16 loc) 398 B
export = CommonUtils; /** * Common utility functions. * * @class * @author Mihail Radkov */ declare class CommonUtils { /** * Checks if at least one of the supplied arguments is undefined or null. * * @return {boolean} <code>true</code> if there is null argument or * <code>false</code> otherwise */ static hasNullArguments(...args: any[]): boolean; }