useTrunc
Reactive Math.trunc.
Usage
ts
import { useTrunc } from '@vueuse/math'
const value1 = ref(0.95)
const value2 = ref(-2.34)
const result1 = useTrunc(value1) // 0
const result2 = useTrunc(value2) // -2Type Declarations
typescript
/**
* Reactive `Math.trunc`.
*
* @see https://vueuse.org/useTrunc
*/
export declare function useTrunc(
value: MaybeRefOrGetter<number>,
): ComputedRef<number>Source
Contributors
Changelog
v10.0.0-beta.4 on 4/13/20234d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter0a72b - feat(toValue): rename resolveUnref to toValuev9.0.0-beta.0 on 7/17/2022