2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-27 17:43:27 +00:00
bazel-lib/lib/strings.bzl

8 lines
135 B
Python
Raw Normal View History

"Utilities for strings"
2023-06-09 23:22:37 +00:00
load("//lib/private:strings.bzl", _chr = "chr", _hex = "hex", _ord = "ord")
chr = _chr
ord = _ord
hex = _hex