✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
69 lines
2.3 KiB
JavaScript
69 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
var test = require('tape');
|
|
|
|
var getProto = require('../');
|
|
|
|
test('getProto', function (t) {
|
|
t.equal(typeof getProto, 'function', 'is a function');
|
|
|
|
t.test('can get', { skip: !getProto }, function (st) {
|
|
if (getProto) { // TS doesn't understand tape's skip
|
|
var proto = { b: 2 };
|
|
st.equal(getProto(proto), Object.prototype, 'proto: returns the [[Prototype]]');
|
|
|
|
st.test('nullish value', function (s2t) {
|
|
// @ts-expect-error
|
|
s2t['throws'](function () { return getProto(undefined); }, TypeError, 'undefined is not an object');
|
|
// @ts-expect-error
|
|
s2t['throws'](function () { return getProto(null); }, TypeError, 'null is not an object');
|
|
s2t.end();
|
|
});
|
|
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(true); }, 'throws for true');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(false); }, 'throws for false');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(42); }, 'throws for 42');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(NaN); }, 'throws for NaN');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(0); }, 'throws for +0');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(-0); }, 'throws for -0');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(Infinity); }, 'throws for ∞');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(-Infinity); }, 'throws for -∞');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(''); }, 'throws for empty string');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto('foo'); }, 'throws for non-empty string');
|
|
st.equal(getProto(/a/g), RegExp.prototype);
|
|
st.equal(getProto(new Date()), Date.prototype);
|
|
st.equal(getProto(function () {}), Function.prototype);
|
|
st.equal(getProto([]), Array.prototype);
|
|
st.equal(getProto({}), Object.prototype);
|
|
|
|
var nullObject = { __proto__: null };
|
|
if ('toString' in nullObject) {
|
|
st.comment('no null objects in this engine');
|
|
st.equal(getProto(nullObject), Object.prototype, '"null" object has Object.prototype as [[Prototype]]');
|
|
} else {
|
|
st.equal(getProto(nullObject), null, 'null object has null [[Prototype]]');
|
|
}
|
|
}
|
|
|
|
st.end();
|
|
});
|
|
|
|
t.test('can not get', { skip: !!getProto }, function (st) {
|
|
st.equal(getProto, null);
|
|
|
|
st.end();
|
|
});
|
|
|
|
t.end();
|
|
});
|