Vite + TypeScript PWA that mirrors the Android app's core features: - Pre-processed shelter data (build-time UTM33N→WGS84 conversion) - Leaflet map with shelter markers, user location, and offline tiles - Canvas compass arrow (ported from DirectionArrowView.kt) - IndexedDB shelter cache with 7-day staleness check - Service worker with CacheFirst tiles and precached app shell - i18n for en, nb, nn (ported from Android strings.xml) - iOS/Android compass handling with low-pass filter - Respects user map interaction (no auto-snap on pan/zoom) - Build revision cache-breaker for reliable SW updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var hasSymbols = require('has-symbols')();
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
var callBound = require('call-bound');
|
|
var isString = require('is-string');
|
|
|
|
var $iterator = GetIntrinsic('%Symbol.iterator%', true);
|
|
var $stringSlice = callBound('String.prototype.slice');
|
|
var $String = GetIntrinsic('%String%');
|
|
|
|
var IsArray = require('./IsArray');
|
|
|
|
module.exports = function getIteratorMethod(ES, iterable) {
|
|
var usingIterator;
|
|
if (hasSymbols) {
|
|
usingIterator = ES.GetMethod(iterable, $iterator);
|
|
} else if (IsArray(iterable)) {
|
|
usingIterator = function () {
|
|
var i = -1;
|
|
var arr = this;
|
|
return {
|
|
next: function () {
|
|
i += 1;
|
|
return {
|
|
done: i >= arr.length,
|
|
value: arr[i]
|
|
};
|
|
}
|
|
};
|
|
};
|
|
} else if (isString(iterable)) {
|
|
usingIterator = function () {
|
|
var i = 0;
|
|
return {
|
|
next: function () {
|
|
var nextIndex = ES.AdvanceStringIndex($String(iterable), i, true);
|
|
var value = $stringSlice(iterable, i, nextIndex);
|
|
i = nextIndex;
|
|
var done = nextIndex > iterable.length;
|
|
return {
|
|
done: done,
|
|
value: done ? void undefined : value
|
|
};
|
|
}
|
|
};
|
|
};
|
|
}
|
|
return usingIterator;
|
|
};
|