Files
Laca-City/frontend/node_modules/functions-have-names/test/index.js
PhongPham c65cc97a33 🎯 MapView v2.0 - Global Deployment Ready
 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
2025-07-20 19:52:16 +07:00

66 lines
1.9 KiB
JavaScript

'use strict';
var test = require('tape');
var hasNames = require('../');
test('named functions', function (t) {
function f() {} // eslint-disable-line func-style
var g = function h() {};
t.equal(typeof hasNames, 'function', 'is a function');
t.equal(hasNames(), f.name === 'f' && g.name === 'h', 'functions have names or not as expected');
t.end();
});
var oDP = Object.defineProperty;
if (oDP) {
try {
oDP({}, 'a', { value: 1 });
} catch (e) {
oDP = null;
}
}
test('functionsHaveConfigurableNames', function (t) {
t.equal(typeof hasNames.functionsHaveConfigurableNames, 'function', 'is a function');
if (hasNames()) {
var fn = function f() {};
if (oDP) {
try {
oDP(fn, 'name', { configurable: true, value: 'foo' });
} catch (e) {}
if (fn.name === 'f') {
t.equal(hasNames.functionsHaveConfigurableNames(), false, 'function names are not configurable');
} else if (fn.name === 'foo') {
t.equal(hasNames.functionsHaveConfigurableNames(), true, 'function names are not configurable');
} else {
t.fail('functions have names, but something surprising has happened. Please report this!');
}
} else {
t.equal(hasNames.functionsHaveConfigurableNames(), false, 'function names are not configurable');
}
} else {
t.equal(hasNames.functionsHaveConfigurableNames(), false, 'functions do not have names');
}
t.end();
});
test('boundFunctionsHaveNames', function (t) {
t.equal(typeof hasNames.boundFunctionsHaveNames, 'function', 'is a function');
var fn = function f() {};
if (typeof fn.bind !== 'function') {
t.equal(hasNames.boundFunctionsHaveNames(), false, 'bound functions do not have names, because .bind does not exist');
} else if (hasNames()) {
t.equal(hasNames.boundFunctionsHaveNames(), fn.bind().name !== '', 'bound functions have names');
} else {
t.equal(hasNames.boundFunctionsHaveNames(), false, 'bound functions do not have names, because none do');
}
t.end();
});