1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00
otto/underscore/underscore.go
Steven Hartland 026a1d9a9c
chore: lint and naming refactor (#475)
Enable more linters, address the issues and do a major naming refactor
to use golang lower camelCase identifiers for types, functions, methods
and variable names.

Also: 
* Clean up inline generation so it doesn't rely on temporary variables.
* Remove unused functions generated by inline.pl.
2022-12-04 21:49:38 +00:00

49 lines
1.1 KiB
Go

// Package underscore contains the source for the JavaScript utility-belt library.
//
// import (
// _ "github.com/robertkrimen/otto/underscore"
// )
//
// Every Otto runtime will now include [underscore] for more information see the [underscore docs]
//
// By importing this package, you'll automatically load underscore every time you create a new Otto runtime.
//
// To prevent this behavior, you can do the following:
//
// import (
// "github.com/robertkrimen/otto/underscore"
// )
//
// func init() {
// underscore.Disable()
// }
//
// [underscore]: http://underscorejs.org
// [underscore docs]: https://github.com/documentcloud/underscore
package underscore
import (
_ "embed" // Embed underscore.
"github.com/robertkrimen/otto/registry"
)
//go:embed underscore-min.js
var underscore string
var entry *registry.Entry = registry.Register(Source)
// Enable underscore runtime inclusion.
func Enable() {
entry.Enable()
}
// Disable underscore runtime inclusion.
func Disable() {
entry.Disable()
}
// Source returns the underscore source.
func Source() string {
return underscore
}