UNPKG

107 Btext/coffeescriptView Raw
1# Bignum power
2
3
4
5# a is a bigint, n is a small normal int
6mpow = (a,n) ->
7
8 return a.pow n
9
10#if SELFTEST
11