UNPKG
aureooms-js-integer
Version:
latest (1.0.0)
1.0.0
0.3.2
0.3.1
0.3.0
integer code bricks for JavaScript
aureooms.github.io/js-integer
aureooms/js-integer
aureooms-js-integer
/
src
/
1-new
/
convert
/
_copy.js
7 lines
(3 loc)
•
102 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
_copy
(
a , ai , aj , b , bi
) {
for
( ; ai < aj ; ++ai, ++bi ) b[bi] = a[ai] ; }