Setting the file. One moment.
Subchapter 18.57
references/useAbs.mdMarkdown402 BView on GitHub
import { useAbs } from '@vueuse/math'
const value = ref(-23)
const absValue = useAbs(value) // Ref<23>/**
* Reactive `Math.abs`.
*
* @see https://vueuse.org/useAbs
*
* @__NO_SIDE_EFFECTS__
*/
export declare function useAbs(
value: MaybeRefOrGetter<number>,
): ComputedRef<number>