vertinho
Version:
Library to make conference apps and softphones through WebSockets with FreeSWITCH mod_verto.
23 lines (21 loc) • 743 B
JavaScript
/**
* _ _ _
* | | (_) | |
* __ _____ _ __| |_ _ _ __ | |__ ___
* \ \ / / _ \ '__| __| | '_ \| '_ \ / _ \
* \ V / __/ | | |_| | | | | | | | (_) |
* \_/ \___|_| \__|_|_| |_|_| |_|\___/
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
* And see https://github.com/Mazuh/vertinho for the full license details.
*/
export const printError = (...args) => console.error( // eslint-disable-line
'(Vertinho)',
...args,
);
export const printWarning = (...args) => console.warn( // eslint-disable-line
'(Vertinho)',
...args,
);