NAME
Mango::BSON::Code - Code type
SYNOPSIS
use Mango::BSON::Code;
my $code = Mango::BSON::Code->new(code => 'function () {}');
DESCRIPTION
Mango::BSON::Code is a container for the BSON code type used by Mango::BSON.
ATTRIBUTES
Mango::BSON::Code implements the following attributes.
code
my $js = $code->code;
$code = $code->code('function () {}');
JavaScript code.
scope
my $scode = $code->scope;
$code = $code->scope({foo => 'bar'});
Scope.
METHODS
Mango::BSON::Code inherits all methods from Mojo::Base.