* @return the wrapped value.
*/
@Override
public Object wrap(Context cx, Scriptable scope, Object obj, Class staticType) {
if (obj instanceof CaseInsensitiveMap) {
return new ScriptableMap(scope, (CaseInsensitiveMap) obj);
}
return super.wrap(cx, scope, obj, staticType);
}