酒店预订平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

14 satır
281 B

  1. // CommonJs
  2. if (typeof exports === 'object' && typeof module !== 'undefined') {
  3. module.exports = template;
  4. // RequireJS && SeaJS
  5. } else if (typeof define === 'function') {
  6. define(function() {
  7. return template;
  8. });
  9. } else {
  10. this.template = template;
  11. }
  12. })();