Sha256: b8761468e78ee9694193f1b0f9b73d23290847fdc1defa3a59888b4bd63723e0

Contents?: true

Size: 244 Bytes

Versions: 3

Compression:

Stored size: 244 Bytes

Contents

# Frozen-string-literal: true
# Copyright: 2012 - 2017 - MIT License
# Encoding: utf-8

module Sprockets
  class Asset
    def data_uri
      "data:#{content_type};base64,#{Rack::Utils.escape(
        Base64.encode64(to_s))}"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-assets-3.0.2 lib/jekyll/assets/patches/sprockets_data_uri.rb
jekyll-assets-3.0.1 lib/jekyll/assets/patches/sprockets_data_uri.rb
jekyll-assets-3.0.0 lib/jekyll/assets/patches/sprockets_data_uri.rb