UNPKG

maia-util

Version:

Utility math and music functions supporting various applications by Music Artificial Intelligence Algorithms, Inc.

21 lines (18 loc) 421 B
export default function sort_points_asc_by_id(a, b){ // Tom Collins 18/2/2015. // In // a Object mandatory // b Object mandatory // Out Object // A helper function, to sort two notes (points) or rests ascending by the // values in the id field. var c = a.ID; var d = b.ID; if (typeof c == "string"){ c = parseFloat(c); } if (typeof d == "string"){ d = parseFloat(d); } return c - d; }