Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does slash double underscore slash mean? /__/

On github i see this path to a file:

importScripts('/__/firebase/3.8.0/firebase-app.js');
importScripts('/__/firebase/3.8.0/firebase-messaging.js');
importScripts('/__/firebase/init.js');

What does the "/__/" stands for?

like image 503
Miloslav Krejza Avatar asked Apr 27 '17 18:04

Miloslav Krejza


1 Answers

On Firebase Hosting, the Firebase SDK along with a script that initializes the SDK for the current project are automatically served from special reserved URLs. You can read more about it on this blog post.

like image 139
Michael Bleigh Avatar answered Sep 21 '22 13:09

Michael Bleigh