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