mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
5 lines
169 B
Ruby
5 lines
169 B
Ruby
require "oj"
|
|
|
|
# Set the default mode for the Oj library to use the :compat mode, which makes
|
|
# Oj.load safe for untrusted data.
|
|
Oj.default_options = { :mode => :compat } |