mirror of
https://github.com/robertkrimen/otto
synced 2025-10-12 20:27:30 +08:00

Leverage github actions for tests and linting. This includes fixing a bunch of issues highlighted by golangci including: * Dead code. * Ineffectual assigns. * Goto warnings. * Nil return err. * Reused literal strings. * Test parameter order. Also: * Setup clog.
20 lines
483 B
Go
20 lines
483 B
Go
package otto
|
|
|
|
func toNumberPrimitive(value Value) Value {
|
|
return _toPrimitive(value, defaultValueHintNumber)
|
|
}
|
|
|
|
func toPrimitive(value Value) Value {
|
|
return _toPrimitive(value, defaultValueNoHint)
|
|
}
|
|
|
|
func _toPrimitive(value Value, hint _defaultValueHint) Value {
|
|
switch value.kind {
|
|
case valueNull, valueUndefined, valueNumber, valueString, valueBoolean:
|
|
return value
|
|
case valueObject:
|
|
return value._object().DefaultValue(hint)
|
|
}
|
|
panic(hereBeDragons(value.kind, value))
|
|
}
|