module Marginalia::Comment
def self.escape_sql_comment(str)
Experimental RBS support (using type sampling data from the type_fusion
project).
def self.escape_sql_comment: (String str) -> String
This signature was generated using 9 samples from 1 application.
def self.escape_sql_comment(str) while str.include?('/*') || str.include?('*/') str = str.gsub('/*', '').gsub('*/', '') end str end