mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
10 lines
137 B
Python
10 lines
137 B
Python
|
|
||
|
|
||
|
"Utilities for strings"
|
||
|
|
||
|
load("//lib/private:strings.bzl", _chr = "chr", _ord = "ord", _hex = "hex")
|
||
|
|
||
|
chr = _chr
|
||
|
ord = _ord
|
||
|
hex = _hex
|