mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
URL = global.URL;
|
|
URLSearchParams = global.URLSearchParams;
|
|
|
|
exports.URL = URL;
|
|
exports.URLSearchParams = URLSearchParams;
|
|
|
|
// backwards compatibility
|
|
Object.assign(URL, require('./bc/url_client'));
|