本文整理汇总了TypeScript中is.array函数的典型用法代码示例。如果您正苦于以下问题:TypeScript array函数的具体用法?TypeScript array怎么用?TypeScript array使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了array函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
(BigQuery as any).getType_ = function(value) {
let typeName;
if (value instanceof (BigQuery as any).date) {
typeName = 'DATE';
} else if (value instanceof (BigQuery as any).datetime) {
typeName = 'DATETIME';
} else if (value instanceof (BigQuery as any).time) {
typeName = 'TIME';
} else if (value instanceof (BigQuery as any).timestamp) {
typeName = 'TIMESTAMP';
} else if (value instanceof Buffer) {
typeName = 'BYTES';
} else if (value instanceof Big) {
typeName = 'NUMERIC';
} else if (is.array(value)) {
return {
type: 'ARRAY',
arrayType: (BigQuery as any).getType_(value[0]),
};
} else if (is.bool(value)) {
typeName = 'BOOL';
} else if (is.number(value)) {
typeName = value % 1 === 0 ? 'INT64' : 'FLOAT64';
} else if (is.object(value)) {
return {
type: 'STRUCT',
structTypes: Object.keys(value).map(function(prop) {
return {
name: prop,
type: (BigQuery as any).getType_(value[prop]),
};
}),
};
} else if (is.string(value)) {
typeName = 'STRING';
}
if (!typeName) {
throw new Error(
[
'This value could not be translated to a BigQuery data type.',
value,
].join('\n')
);
}
return {
type: typeName,
};
};
示例2: is
export function is(value: any): value is LocalizeInfo {
let candidate = value as LocalizeInfo;
return Is.defined(candidate) && Is.string(candidate.key) && (Is.undef(candidate.comment) || (Is.array(candidate.comment) && candidate.comment.every(element => Is.string(element))));
}