-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(@jest/expect-utils): move immutable utils to a separate file (…
- Loading branch information
1 parent
d75433d
commit 0b4a6ec
Showing
3 changed files
with
81 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
*/ | ||
|
||
// SENTINEL constants are from https://github.com/immutable-js/immutable-js/tree/main/src/predicates | ||
const IS_KEYED_SENTINEL = '@@__IMMUTABLE_KEYED__@@'; | ||
const IS_SET_SENTINEL = '@@__IMMUTABLE_SET__@@'; | ||
const IS_LIST_SENTINEL = '@@__IMMUTABLE_LIST__@@'; | ||
const IS_ORDERED_SENTINEL = '@@__IMMUTABLE_ORDERED__@@'; | ||
const IS_RECORD_SYMBOL = '@@__IMMUTABLE_RECORD__@@'; | ||
|
||
function isObjectLiteral(source: unknown): source is Record<string, unknown> { | ||
return source != null && typeof source === 'object' && !Array.isArray(source); | ||
} | ||
|
||
export function isImmutableUnorderedKeyed(source: unknown): boolean { | ||
return Boolean( | ||
source && | ||
isObjectLiteral(source) && | ||
source[IS_KEYED_SENTINEL] && | ||
!source[IS_ORDERED_SENTINEL], | ||
); | ||
} | ||
|
||
export function isImmutableUnorderedSet(source: unknown): boolean { | ||
return Boolean( | ||
source && | ||
isObjectLiteral(source) && | ||
source[IS_SET_SENTINEL] && | ||
!source[IS_ORDERED_SENTINEL], | ||
); | ||
} | ||
|
||
export function isImmutableList(source: unknown): boolean { | ||
return Boolean(source && isObjectLiteral(source) && source[IS_LIST_SENTINEL]); | ||
} | ||
|
||
export function isImmutableOrderedKeyed(source: unknown): boolean { | ||
return Boolean( | ||
source && | ||
isObjectLiteral(source) && | ||
source[IS_KEYED_SENTINEL] && | ||
source[IS_ORDERED_SENTINEL], | ||
); | ||
} | ||
|
||
export function isImmutableOrderedSet(source: unknown): boolean { | ||
return Boolean( | ||
source && | ||
isObjectLiteral(source) && | ||
source[IS_SET_SENTINEL] && | ||
source[IS_ORDERED_SENTINEL], | ||
); | ||
} | ||
|
||
export function isImmutableRecord(source: unknown): boolean { | ||
return Boolean(source && isObjectLiteral(source) && source[IS_RECORD_SYMBOL]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters