0.0.1 • Published 2 years ago

@nomorejalapenos/segmentator v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago
const distance = segmentator<
  'intro' | 'stage1' | 'stage2' | 'stage3' | 'stage4'
>(100, 0)

distance.cut('intro', 1)
distance.cut('stage1', 5)
distance.cut('stage2', 1)
distance.cut('stage3', 3)
distance.cut('stage4', 1)

// 90.9090909090909 100 9.090909090909092
const { a, b, s } = distance.get('stage4')
0.0.1

2 years ago