UNPKG

terriajs

Version:

Geospatial data visualization platform.

14 lines (10 loc) 340 B
'use strict'; /*global require,describe,it,expect*/ var sortedIndices = require('../../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]); }); });