Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upChange policy.get() return value to plain (with override option) #191
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change the default return value of the
policy.get()
method. Before, it always returned an object with{ value, cached, report }
. This changes it to return just thevalue
by default. To keep the previous format, use the newgetDecoratedValue
option set totrue
.