Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/note.picotech.app/public_html/node_modules/fluent-ffmpeg/tools/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /*jshint node:true*/
'use strict';
function createAlias(doclet, alias) {
var clone = {};
Object.keys(doclet).forEach(function(key) {
clone[key] = doclet[key];
});
if (alias.indexOf('#') !== -1) {
clone.longname = alias;
clone.memberof = alias.split('#')[0];
clone.name = alias.split('#')[1];
} else {
clone.longname = clone.memberof + '#' + alias;
clone.name = alias;
}
delete clone.returns;
delete clone.examples;
delete clone.meta;
delete clone.aliases;
clone.isAlias = true;
clone.description = 'Alias for <a href="#' + doclet.name + '">' + doclet.longname + '</a>';
return clone;
}
exports.handlers = {
parseComplete: function(e) {
var doclets = e.doclets.slice();
doclets.forEach(function(doclet) {
// Duplicate doclets with aliases
if (doclet.aliases) {
doclet.aliases.forEach(function(alias) {
e.doclets.push(createAlias(doclet, alias));
});
}
});
}
};
exports.defineTags = function(dict) {
dict.defineTag('aliases', {
onTagged: function(doclet, tag) {
doclet.aliases = tag.text.split(',');
}
});
dict.defineTag('category', {
onTagged: function(doclet, tag) {
doclet.category = tag.text;
}
});
}; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0046 ]-- |