osrm
Version:
The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.
15 lines (12 loc) • 305 B
JavaScript
;
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shimAssign() {
var polyfill = getPolyfill();
define(
Object,
{ assign: polyfill },
{ assign: function () { return Object.assign !== polyfill; } }
);
return polyfill;
};