4
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?

ZOZOAdvent Calendar 2024

Day 11

LSONについて

Last updated at Posted at 2024-12-10

LSONはLiveScript Object Notation Parserの略で、JSONのLive Script版のようなものです。
LiveScriptはCoffeeScriptと互換性があるため、CSONをパースすることもできます。

LSONの例

LSONはCSONの上位互換なためCSONのような雰囲気をしています。
以下の例を見ると分かりますが、配列の要素を区切るためのカンマは不要です。
また、オブジェクトを表現するためにYAMLのブロックスタイルのような表記を使います。
これらの特徴はCSONも持っているため、CSONとLSONの類似性を感じる事ができます。

an_array: <[ an array of strings ]>
another_array: [
  'another'
  'array'
]
# we can even have comments
a_dict: {
  key: 'value'
}
a_string: 'some string'
another_string: \anotherstring

出展:

4
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
4
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?