@rasifix/orienteering-utils 2.0.9 → 2.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.js +3 -0
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -7,3 +7,6 @@ var ranking = require("./utils/ranking");
7
7
  exports.ranking = ranking;
8
8
  var model = require("./model");
9
9
  exports.model = model;
10
+ var time = require("./time");
11
+ exports.formatTime = time.formatTime;
12
+ exports.parseTime = time.parseTime;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rasifix/orienteering-utils",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "utility functions for orienteering result analyzis",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",