1
0

Compare commits

..

No commits in common. "main" and "v1.1.0" have entirely different histories.
main ... v1.1.0

3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "gofmt",
"version": "1.1.2",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "gofmt",
"version": "1.1.2",
"version": "1.0.0",
"license": "ISC"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "gofmt",
"version": "1.1.2",
"version": "1.0.0",
"author": "",
"main": "dist/main.js",
"scripts": {

View File

@ -10,7 +10,7 @@ func Format(source string) interface{} {
if err != nil {
return err
}
return string(ret)
return ret
}
func main() {