UNPKG
siu
Version:
latest (0.4.0)
0.4.0
0.3.1
0.3.0
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
Seamless Immutable Utilities
github.com/Versent/siu
Versent/siu
siu
/
lib
/
utils
/
extractIds.js
9 lines
(8 loc)
•
175 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports =
function
extractIds
(
records
)
{
var
ids = [];
for
(
var
a =
0
; a < records.length; a++) {
var
record
= records[a]; ids.push(
record
.id); }
return
ids; }