blob: 42bcda5f32a1be72a582b51a151f97112861ae9c [file] [log] [blame]
// Copyright (C) 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.valueof
description: >
If called on String primitive, returns it
info: |
String.prototype.valueOf ( )
1. Return ? thisStringValue(this value).
thisStringValue ( value )
1. If Type(value) is String, return value.
---*/
var valueOf = String.prototype.valueOf;
assert.sameValue('str'.valueOf(), 'str');
assert.sameValue(valueOf.call(''), '');