1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravelのdd()みたいな関数をJavaScriptで1行で作る

Posted at

普段、LaravelとNode.jsで開発することが多いのですが、Laravelでdd()を使いまくっていたらJSのほうでもdd()を使いたくなったので、1行でdd関数を定義してみました。

Node.js用

const dd = (...args) => { console.log(...args); process.exit() }

console.logだと3階層以上の入れ子になっているオブジェクトは中身が見れず[Object]としか出力されないので、ネストが深いオブジェクトの中身を見たい場合は下記コードのほうが良いです。

ネストが深いオブジェクトの出力用
const dd = (...args) => { console.dir({ ...args }, { depth: null }); process.exit() }

console.dirを使ってオプションに { depth: null }を渡すと、ネストしたオブジェクトの中身を全部見れるようになります。

フロントエンド用

const dd = (...args) => { console.log(...args); throw new Error() }

フロントエンドだと process.exit() が無いので throw で例外発生させて処理を止めてます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?