feat: Inital commit
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// +build go1.10
|
||||
|
||||
package xpath
|
||||
|
||||
import (
|
||||
"math"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func round(f float64) int {
|
||||
return int(math.Round(f))
|
||||
}
|
||||
|
||||
func newStringBuilder() stringBuilder {
|
||||
return &strings.Builder{}
|
||||
}
|
||||
Reference in New Issue
Block a user