11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
|
|
|
|
'use strict';
|
|
|
|
import {Type} from '../type';
|
|
|
|
export = new Type('tag:yaml.org,2002:seq', {
|
|
kind: 'sequence',
|
|
construct: function (data) { return null !== data ? data : []; }
|
|
});
|