mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
* Add concept of `Liquid::World` * Rename `World` to `Environment`
9 lines
125 B
Ruby
9 lines
125 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Liquid
|
|
module Const
|
|
EMPTY_HASH = {}.freeze
|
|
EMPTY_ARRAY = [].freeze
|
|
end
|
|
end
|