Sha256: fb189634ca7b4cae0cfbb77581e8346dc2514ca9c4710a86a70d1498a330cb98

Contents?: true

Size: 178 Bytes

Versions: 5

Compression:

Stored size: 178 Bytes

Contents

module Polyfill
  module V2_5
    module Array
      def append(*args)
        push(*args)
      end

      def prepend(*args)
        unshift(*args)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
polyfill-1.9.0 lib/polyfill/v2_5/array.rb
polyfill-1.8.0 lib/polyfill/v2_5/array.rb
polyfill-1.7.0 lib/polyfill/v2_5/array.rb
polyfill-1.6.0 lib/polyfill/v2_5/array.rb
polyfill-1.5.0 lib/polyfill/v2_5/array.rb