blob: a4d741dbc0aa0069fdeb07d99b48689b73df2f73 [file] [log] [blame]
// Copyright (c) 2014 Ryan Lewis. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Ryan Lewis
description: >
endsWith should return true when called on 'word' and passed 'r',
with an endPosition of 3.
features: [String.prototype.endsWith]
---*/
assert.sameValue('word'.endsWith('r', 3), true, '"word".endsWith("r", 3)');