Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 781 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 781 Bytes

Dtype

Golang 1.15 Linter Go Report Card codecov

⚙️ Installation

go get -u github.com/aofdev/dtype

⚡️ Quickstart

package main

import (
	"fmt"

	d "github.com/aofdev/dtype"
)

const text = ""

func main() {
	value, isNull := d.DefaultStringWithNullable(text)
	fmt.Printf("value: %v isNull: %v", value, isNull)
}

//output: value:  isNull: <nil>