Files
otto/type_boolean.go
Steven Hartland 9297a9abe4 feat: add github action tests and linting (#418)
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.
2021-09-27 16:19:28 +01:00

6 lines
159 B
Go

package otto
func (runtime *_runtime) newBooleanObject(value Value) *_object {
return runtime.newPrimitiveObject(classBoolean, toValue_bool(value.bool()))
}