New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ts-commons

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-commons - npm Package Compare versions

Comparing version 1.0.40 to 1.0.41

dist/utils/ext.utils.d.ts

17

dist/index.d.ts

@@ -11,5 +11,20 @@ import { ArrayUtils } from "./utils/array.utils";

import { IOUtils } from "./utils/io.utils";
import { ExtUtils } from "./utils/ext.utils";
declare const isNumber: typeof ObjectUtils.isNumber;
declare const isArray: typeof ObjectUtils.isArray;
declare const isBoolean: typeof ObjectUtils.isBoolean;
declare const isString: typeof ObjectUtils.isString;
declare const isDate: typeof ObjectUtils.isDate;
declare const isNull: typeof ObjectUtils.isNull;
declare const isUndefinend: typeof ObjectUtils.isUndefinend;
declare const hasValue: typeof ObjectUtils.hasValue;
declare const isNullOrUndefined: typeof ObjectUtils.isNullOrUndefined;
declare const getOrDefault: typeof ObjectUtils.getOrDefault;
export { ObjectUtils, StringUtils, NumberUtils, DateUtils, RegexUtils, HttpUtils, ArrayUtils, ThreadUtils, ActionUtils, IOUtils, hasValue, isNullOrUndefined, getOrDefault, };
declare const isEmpty: typeof ExtUtils.isEmpty;
declare const isNotEmpty: typeof ExtUtils.isNotEmpty;
declare const contains: typeof ExtUtils.contains;
declare const isBlank: typeof StringUtils.isBlank;
declare const isNotBlank: typeof StringUtils.isNotBlank;
declare const containsIgnoreCase: typeof StringUtils.containsIgnoreCase;
declare const containsAny: typeof ArrayUtils.containsAny;
export { ObjectUtils, StringUtils, NumberUtils, DateUtils, RegexUtils, HttpUtils, ArrayUtils, ThreadUtils, ActionUtils, IOUtils, isNumber, isArray, isBoolean, isString, isDate, isNull, isUndefinend, hasValue, isNullOrUndefined, getOrDefault, isEmpty, isNotEmpty, isBlank, isNotBlank, contains, containsAny, containsIgnoreCase };
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOrDefault = exports.isNullOrUndefined = exports.hasValue = exports.IOUtils = exports.ActionUtils = exports.ThreadUtils = exports.ArrayUtils = exports.HttpUtils = exports.RegexUtils = exports.DateUtils = exports.NumberUtils = exports.StringUtils = exports.ObjectUtils = void 0;
exports.containsIgnoreCase = exports.containsAny = exports.contains = exports.isNotBlank = exports.isBlank = exports.isNotEmpty = exports.isEmpty = exports.getOrDefault = exports.isNullOrUndefined = exports.hasValue = exports.isUndefinend = exports.isNull = exports.isDate = exports.isString = exports.isBoolean = exports.isArray = exports.isNumber = exports.IOUtils = exports.ActionUtils = exports.ThreadUtils = exports.ArrayUtils = exports.HttpUtils = exports.RegexUtils = exports.DateUtils = exports.NumberUtils = exports.StringUtils = exports.ObjectUtils = void 0;
var array_utils_1 = require("./utils/array.utils");

@@ -24,2 +24,17 @@ Object.defineProperty(exports, "ArrayUtils", { enumerable: true, get: function () { return array_utils_1.ArrayUtils; } });

Object.defineProperty(exports, "IOUtils", { enumerable: true, get: function () { return io_utils_1.IOUtils; } });
var ext_utils_1 = require("./utils/ext.utils");
var isNumber = object_utils_1.ObjectUtils.isNumber;
exports.isNumber = isNumber;
var isArray = object_utils_1.ObjectUtils.isArray;
exports.isArray = isArray;
var isBoolean = object_utils_1.ObjectUtils.isBoolean;
exports.isBoolean = isBoolean;
var isString = object_utils_1.ObjectUtils.isString;
exports.isString = isString;
var isDate = object_utils_1.ObjectUtils.isDate;
exports.isDate = isDate;
var isNull = object_utils_1.ObjectUtils.isNull;
exports.isNull = isNull;
var isUndefinend = object_utils_1.ObjectUtils.isUndefinend;
exports.isUndefinend = isUndefinend;
var hasValue = object_utils_1.ObjectUtils.hasValue;

@@ -31,2 +46,16 @@ exports.hasValue = hasValue;

exports.getOrDefault = getOrDefault;
var isEmpty = ext_utils_1.ExtUtils.isEmpty;
exports.isEmpty = isEmpty;
var isNotEmpty = ext_utils_1.ExtUtils.isNotEmpty;
exports.isNotEmpty = isNotEmpty;
var contains = ext_utils_1.ExtUtils.contains;
exports.contains = contains;
var isBlank = string_utils_1.StringUtils.isBlank;
exports.isBlank = isBlank;
var isNotBlank = string_utils_1.StringUtils.isNotBlank;
exports.isNotBlank = isNotBlank;
var containsIgnoreCase = string_utils_1.StringUtils.containsIgnoreCase;
exports.containsIgnoreCase = containsIgnoreCase;
var containsAny = array_utils_1.ArrayUtils.containsAny;
exports.containsAny = containsAny;
//# sourceMappingURL=index.js.map

2

package.json
{
"name": "ts-commons",
"version": "1.0.40",
"version": "1.0.41",
"description": "common methods for typescript",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc