mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
* --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: sinon dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
import extend from './index'
|
|
|
|
// OK
|
|
|
|
// Pass single `object`.
|
|
extend({});
|
|
extend([]);
|
|
extend(() => {});
|
|
|
|
// Pass single `object`, then `any`.
|
|
extend({}, 0);
|
|
extend({}, "");
|
|
extend({}, false);
|
|
extend({}, null);
|
|
extend({}, undefined);
|
|
extend({}, {});
|
|
extend({}, []);
|
|
extend({}, () => {});
|
|
|
|
// Pass variadic args.
|
|
extend({}, 0, "", false, null, undefined, {}, [], () => {});
|
|
|
|
// Pass `boolean`, then single `object`.
|
|
extend(true, {});
|
|
extend(true, []);
|
|
extend(true, () => {});
|
|
|
|
// Pass `boolean`, single `object`, then `any`.
|
|
extend(true, {}, 0);
|
|
extend(true, {}, "");
|
|
extend(true, {}, false);
|
|
extend(true, {}, null);
|
|
extend(true, {}, undefined);
|
|
extend(true, {}, {});
|
|
extend(true, {}, []);
|
|
extend(true, {}, () => {});
|
|
|
|
// Pass `boolean`, then variadic args.
|
|
extend(true, {}, 0, "", false, null, undefined, {}, [], () => {});
|
|
|
|
// Not OK
|
|
|
|
// Incorrect extendee `object`.
|
|
// @ts-expect-error
|
|
extend();
|
|
// @ts-expect-error
|
|
extend(0);
|
|
// @ts-expect-error
|
|
extend("");
|
|
// @ts-expect-error
|
|
extend(false);
|
|
// @ts-expect-error
|
|
extend();
|
|
|
|
// @ts-expect-error
|
|
extend(true, 0);
|
|
// @ts-expect-error
|
|
extend(true, "");
|
|
// @ts-expect-error
|
|
extend(true, false);
|
|
// @ts-expect-error
|
|
extend(true);
|