Flowdock
method

to

Importance_1
v2.2.1 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::String::Access
to(position) public

Returns the beginning of the string up to the position treating the string as an array (where 0 is the first character).

Examples:

  "hello".to(0)  # => "h"
  "hello".to(2)  # => "hel"
  "hello".to(10) # => "hello"
Show source
Register or log in to add new notes.