https://nodejs.org/api/util.html
https://nodejs.org/api/util.html#util_util_format_format_args
printfみたいなやつ。
console.logなどが内部的に利用しているそうだ。
参考:
プロジェクトで使うNode.js modulesを管理するためのファイル。
参考:
~
明記したところ以下のバージョンがあがることのみ許容
~1.1.2
= 1.1.2 <= version < 1.2.0
~1.1
= 1.1.x
~1
= 1.x
オリジナルの定義は、
Allows patch-level changes if a minor version is specified on the comparator. Allows minor-level changes if not.
^
一番左側にある、ゼロでないバージョニングは変えない (それ以下があがることは許容)
^1.2.3
:= 1.2.3 <= version < 2.0.0
^0.2.3
:= 0.2.3 <= version < 0.3.0
^0.0.3
:= 0.0.3 <= version < 0.0.4
オリジナルの定義は
Allows changes that do not modify the left-most non-zero digit in the [major, minor, patch] tuple.