summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps3/test.js
blob: 2c30036d6815eb68e38bc56610505c493548c409 (plain)
1
2
3
4
5
6
7
import { fancySort } from "./sorted.js";

window.test = function() {
  let test = ["b (30)", "a", "b (5)", "z"];
  let result = fancySort(test);
  console.log(result);
};