1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-26 20:28:49 +08:00
Ugh.
This commit is contained in:
Robert Krimen
2013-01-25 09:59:42 -08:00
parent a13a891d92
commit 20d2e8bba6
48 changed files with 3962 additions and 3971 deletions

View File

@@ -1,7 +1,7 @@
package otto
import (
"strconv"
"strconv"
)
func (runtime *_runtime) newBooleanObject(value Value) *_object {
@@ -9,5 +9,5 @@ func (runtime *_runtime) newBooleanObject(value Value) *_object {
}
func booleanToString(value bool) string {
return strconv.FormatBool(value)
return strconv.FormatBool(value)
}