UNPKG

terriajs

Version:

Geospatial data visualization platform.

12 lines (9 loc) 271 B
"use strict"; import sortedIndices from "../../lib/Core/sortedIndices"; describe("sortedIndices", function () { it("works", function () { var data = ["c", "a", "b", "d"]; var indices = sortedIndices(data); expect(indices).toEqual([1, 2, 0, 3]); }); });