dead-bunny/js/plugins/Nore_p.js
2025-01-12 01:21:39 -06:00

30 lines
952 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//=============================================================================
// Nore_p.js
//=============================================================================
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
//=============================================================================
/*:ja
* @target MZ
* @plugindesc console.log の別名として p を定義します
* @author ル
* @url https://ci-en.dlsite.com/creator/276
*
* @help
* Ver 1.0.0
*
* console.log の別名として p を定義します
*
* プラグインコマンドはありません。
*
* ・利用規約
* 作者に無断で改変、再配布が可能で、利用形態商用、18禁利用等
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function () {
function p(arg) {
console.log(arg);
}
window.p = p;
})();