UNPKG

ngx-sails-socketio

Version:

An Angular module for connecting SailsJs backend through SocketIO.

13 lines 339 B
export function isUndefined(value) { return typeof value === "undefined"; } export function isString(value) { return typeof value === "string"; } export function isEmptyObject(value) { return !Object.keys(value).length; } export function isObject(value) { return value instanceof Object; } //# sourceMappingURL=utils.js.map