Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

site-url.js 207 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. // This module provides a singleton store for saving the Site's hosted url
  2. var siteUrl = null;
  3. module.exports = {
  4. save: function (url) { siteUrl = url; },
  5. retrieve: function () { return siteUrl; }
  6. };
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...