Skip to content

Instantly share code, notes, and snippets.

@Moussa
Moussa / zrmc.js
Created February 9, 2016 19:16
Zombies, Run! Mission counts
(function () {
'use strict';
var base_url = 'https://api.zombiesrungame.com/runs/summaries/?page=';
var page = 1;
var results = [];
var alphanumericalSort = function (a, b) {
// Taken from https://gist.github.com/devinus/453520#file-gistfile1-js
var NUMBER_GROUPS = /(-?\d*\.?\d+)/g;