source: imaps-frontend/node_modules/webpack-merge/dist/utils.d.ts

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 600 bytes
RevLine 
[79a0317]1declare function isRegex(o: any): boolean;
2declare function isFunction(functionToCheck: any): any;
3declare function isPlainObject(a: any): boolean;
4declare function isUndefined(a: any): boolean;
5/**
6 * According to Webpack docs, a "test" should be the following:
7 *
8 * - A string
9 * - A RegExp
10 * - A function
11 * - An array of conditions (may be nested)
12 * - An object of conditions (may be nested)
13 *
14 * https://webpack.js.org/configuration/module/#condition
15 */
16declare function isSameCondition(a: any, b: any): boolean;
17export { isRegex, isFunction, isPlainObject, isUndefined, isSameCondition };
Note: See TracBrowser for help on using the repository browser.