Current section

Files

Jump to
cake src cake helper.gleam
Raw

src/cake/helper.gleam

//// Helper functions
////
// TODO v2 escaped_identifier, quote and escape table and column names
/// Returns a callable that creates a qualified identifier
///
pub fn qualified_identifier(scope scp: String) -> fn(String) -> String {
fn(identifier) -> String { scp <> "." <> identifier }
}