Skip to content

Instantly share code, notes, and snippets.

@cmstead
Created February 5, 2017 21:12
Show Gist options
  • Save cmstead/837bcf73f87136bd6fe16eb6b25758f5 to your computer and use it in GitHub Desktop.
Save cmstead/837bcf73f87136bd6fe16eb6b25758f5 to your computer and use it in GitHub Desktop.
Simple helper for Stats API example code
var viewHelper = (function () {
'use strict';
function parseNumberValues (valueStr) {
return valueStr.trim().split(/[\s\,]+/).map(parseFloat);
}
return {
parseNumberValues: parseNumberValues
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment