integreat-transporter-http
Version:
HTTP transporter for Integreat
5 lines • 360 B
JavaScript
export const isObject = (value) => Object.prototype.toString.call(value) === '[object Object]';
export const isDate = (value) => Object.prototype.toString.call(value) === '[object Date]';
export const isString = (value) => typeof value === 'string';
export const isNonEmptyString = (value) => isString(value) && value.length > 0;
//# sourceMappingURL=is.js.map