UNPKG

298 BJavaScriptView Raw
1function getZone(projection) {
2 return Number.parseInt(projection.toString().substring(3));
3}
4
5if (typeof define === "function" && define.amd) {
6 define(function () {
7 return getZone;
8 });
9}
10
11if (typeof module === "object") {
12 module.exports = getZone;
13 module.exports.default = getZone;
14}