Select Git revision
-
Md. Alim Ul Karim authored
# v0.6.8 - Integration Test Helper (Validators, SliceValidators, Refactoring, ReflectSlice functions) - [x] Validators - [x] SliceValidators - [x] Refactoring - [x] ReflectSlice functions See merge request !55
Md. Alim Ul Karim authored# v0.6.8 - Integration Test Helper (Validators, SliceValidators, Refactoring, ReflectSlice functions) - [x] Validators - [x] SliceValidators - [x] Refactoring - [x] ReflectSlice functions See merge request !55
WithSingleQuote.go 278 B
package simplewrap
import (
"fmt"
"gitlab.com/evatix-go/core/constants"
)
// WithSingleQuote ' + source + ' , also take care of any double if available next.
func WithSingleQuote(source string) string {
return fmt.Sprintf(
constants.SprintSingleQuoteFormat,
source)
}