mirror of
https://github.com/xodio/xod.git
synced 2026-03-25 18:16:55 +01:00
14 lines
192 B
JavaScript
14 lines
192 B
JavaScript
import R from 'ramda';
|
|
|
|
export const getErrors = R.prop('errors');
|
|
|
|
export const getLastId = R.pipe(
|
|
R.keys,
|
|
R.reduce(R.max, 0)
|
|
);
|
|
|
|
export const getNewId = R.pipe(
|
|
getLastId,
|
|
R.inc
|
|
);
|