Sha256: b9b0612329f148802dff87ecbc6baffd4f8796526d5c389c20e7e9fe7a573593
Contents?: true
Size: 471 Bytes
Versions: 8
Compression:
Stored size: 471 Bytes
Contents
const Command = require('./Command') const CommandType = require('./CommandType') class ExplicitCast { static cast(value, targetType) { return new Command( 100, CommandType.Cast, [ value, new Command( 100, CommandType.GetType, [targetType] ) ] ) } } module.exports = ExplicitCast
Version data entries
8 entries across 8 versions & 1 rubygems