|
| 1 | +/*! |
| 2 | + * Determine if an object is a Buffer |
| 3 | + * |
| 4 | + * @author Feross Aboukhadijeh <https://feross.org> |
| 5 | + * @license MIT |
| 6 | + */ |
| 7 | + |
| 8 | +/*! For license information please see index.module.js.LICENSE.txt */ |
| 9 | + |
| 10 | +/** |
| 11 | + * @copyright Copyright (c) 2019 Georg Ehrke |
| 12 | + * |
| 13 | + * @author Georg Ehrke < [email protected]> |
| 14 | + * |
| 15 | + * @author Richard Steinmetz < [email protected]> |
| 16 | + * |
| 17 | + * @license AGPL-3.0-or-later |
| 18 | + * |
| 19 | + * This program is free software: you can redistribute it and/or modify |
| 20 | + * it under the terms of the GNU Affero General Public License as |
| 21 | + * published by the Free Software Foundation, either version 3 of the |
| 22 | + * License, or (at your option) any later version. |
| 23 | + * |
| 24 | + * This program is distributed in the hope that it will be useful, |
| 25 | + * but WITHOUT ANY WARRANTY without even the implied warranty of |
| 26 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 27 | + * GNU Affero General Public License for more details. |
| 28 | + * |
| 29 | + * You should have received a copy of the GNU Affero General Public License |
| 30 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 31 | + * |
| 32 | + */ |
| 33 | + |
| 34 | +/** |
| 35 | + * @copyright Copyright (c) 2019 Georg Ehrke |
| 36 | + * |
| 37 | + * @author Georg Ehrke < [email protected]> |
| 38 | + * |
| 39 | + * @license AGPL-3.0-or-later |
| 40 | + * |
| 41 | + * This program is free software: you can redistribute it and/or modify |
| 42 | + * it under the terms of the GNU Affero General Public License as |
| 43 | + * published by the Free Software Foundation, either version 3 of the |
| 44 | + * License, or (at your option) any later version. |
| 45 | + * |
| 46 | + * This program is distributed in the hope that it will be useful, |
| 47 | + * but WITHOUT ANY WARRANTY without even the implied warranty of |
| 48 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 49 | + * GNU Affero General Public License for more details. |
| 50 | + * |
| 51 | + * You should have received a copy of the GNU Affero General Public License |
| 52 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 53 | + * |
| 54 | + */ |
| 55 | + |
| 56 | +/** |
| 57 | + * @copyright Copyright (c) 2019 Georg Ehrke |
| 58 | + * |
| 59 | + * @author Georg Ehrke < [email protected]> |
| 60 | + * @author Richard Steinmetz < [email protected]> |
| 61 | + * |
| 62 | + * @license AGPL-3.0-or-later |
| 63 | + * |
| 64 | + * This program is free software: you can redistribute it and/or modify |
| 65 | + * it under the terms of the GNU Affero General Public License as |
| 66 | + * published by the Free Software Foundation, either version 3 of the |
| 67 | + * License, or (at your option) any later version. |
| 68 | + * |
| 69 | + * This program is distributed in the hope that it will be useful, |
| 70 | + * but WITHOUT ANY WARRANTY without even the implied warranty of |
| 71 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 72 | + * GNU Affero General Public License for more details. |
| 73 | + * |
| 74 | + * You should have received a copy of the GNU Affero General Public License |
| 75 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 76 | + * |
| 77 | + */ |
| 78 | + |
| 79 | +/** |
| 80 | + * @copyright Copyright (c) 2020 Georg Ehrke |
| 81 | + * |
| 82 | + * @author Georg Ehrke < [email protected]> |
| 83 | + * |
| 84 | + * @license AGPL-3.0-or-later |
| 85 | + * |
| 86 | + * This program is free software: you can redistribute it and/or modify |
| 87 | + * it under the terms of the GNU Affero General Public License as |
| 88 | + * published by the Free Software Foundation, either version 3 of the |
| 89 | + * License, or (at your option) any later version. |
| 90 | + * |
| 91 | + * This program is distributed in the hope that it will be useful, |
| 92 | + * but WITHOUT ANY WARRANTY without even the implied warranty of |
| 93 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 94 | + * GNU Affero General Public License for more details. |
| 95 | + * |
| 96 | + * You should have received a copy of the GNU Affero General Public License |
| 97 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 98 | + * |
| 99 | + */ |
| 100 | + |
| 101 | +/** |
| 102 | + * @copyright Copyright (c) 2021 Christoph Wurst |
| 103 | + * |
| 104 | + * @author Christoph Wurst < [email protected]> |
| 105 | + * |
| 106 | + * @license AGPL-3.0-or-later |
| 107 | + * |
| 108 | + * This program is free software: you can redistribute it and/or modify |
| 109 | + * it under the terms of the GNU Affero General Public License as |
| 110 | + * published by the Free Software Foundation, either version 3 of the |
| 111 | + * License, or (at your option) any later version. |
| 112 | + * |
| 113 | + * This program is distributed in the hope that it will be useful, |
| 114 | + * but WITHOUT ANY WARRANTY without even the implied warranty of |
| 115 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 116 | + * GNU Affero General Public License for more details. |
| 117 | + * |
| 118 | + * You should have received a copy of the GNU Affero General Public License |
| 119 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 120 | + * |
| 121 | + */ |
0 commit comments