mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
32 lines
965 B
JavaScript
32 lines
965 B
JavaScript
(function () {
|
|
|
|
/* Imports */
|
|
var Meteor = Package.meteor.Meteor;
|
|
|
|
/* Package-scope variables */
|
|
var LDAPJS;
|
|
|
|
(function(){
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// packages/rocketchat_ldapjs/lib/ldapjs.js //
|
|
// //
|
|
///////////////////////////////////////////////////////////////////////
|
|
//
|
|
LDAPJS = Npm.require('ldapjs'); // 1
|
|
// 2
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
}).call(this);
|
|
|
|
|
|
/* Exports */
|
|
if (typeof Package === 'undefined') Package = {};
|
|
Package['rocketchat:ldapjs'] = {
|
|
LDAPJS: LDAPJS
|
|
};
|
|
|
|
})();
|
|
|
|
//# sourceMappingURL=rocketchat_ldapjs.js.map
|