Sha256: 540251018ea983f403527fc08613b1359c55d99dc7278e0b54f136b8149abfab
Contents?: true
Size: 371 Bytes
Versions: 90
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true module SassC module Script module ValueConversion class String < Base def to_native(opts = {}) if opts[:quote] == :none || @value.type == :identifier Native::make_string(@value.to_s) else Native::make_qstring(@value.to_s) end end end end end end
Version data entries
90 entries across 75 versions & 6 rubygems