-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { ISharedValue } from 'react-native-worklets-core' | ||
import { Float3 } from '../types' | ||
|
||
export function areFloat3Equal(a: Float3, b?: Float3): boolean { | ||
export const areFloat3Equal = (a: Float3, b?: Float3): boolean => { | ||
return a[0] === b?.[0] && a[1] === b?.[1] && a[2] === b?.[2] | ||
} | ||
|
||
export function isWorkletSharedValue(value: any): value is ISharedValue<any> { | ||
export const isWorkletSharedValue = (value: any): value is ISharedValue<any> => { | ||
'worklet' | ||
return typeof value === 'object' && value != null && 'addListener' in value && typeof value.addListener === 'function' | ||
} |